home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20041116-20060924 / 000035_fdc@columbia.edu_Mon Jan 17 13:53:20 2005.msg < prev    next >
Internet Message Format  |  2006-09-27  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: file size limit?
  5. Date: 17 Jan 2005 18:52:48 GMT
  6. Organization: Columbia University
  7. Lines: 33
  8. Message-ID: <slrncuo2c0.h1v.fdc@sesame.cc.columbia.edu>
  9. References: <y3p8tlepuoi7.yyfmwjjhepax$.dlg@40tude.net> <41E5DACD.3030904@nyc.rr.com> <jo2ba0ddcjmu$.1fco2gea8gpa1$.dlg@40tude.net>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1105987968 4884 128.59.59.56 (17 Jan 2005 18:52:48 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 17 Jan 2005 18:52:48 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15268
  17.  
  18. On 2005-01-13, Philipp Luttenberger <hansolo@sbox.tugraz> wrote:
  19. : Am Thu, 13 Jan 2005 02:17:42 GMT schrieb Jeffrey Altman:
  20. :
  21. :> Yes.  There is a 2GB file limit because all of the functions in
  22. :> C-Kermit use 32-bit signed integers.  No one has taken the time
  23. :> to fix this.
  24. :
  25. : Are there any plans, to fix this? Nowadays 2GB file size aren't exotic
  26. : anymore...
  27. :
  28. This has been on our list for a long time.  It's not easy.  It WOULD be
  29. easy if sizeof(long) simply became 8, and the APIs into the file system
  30. used long for the file length.  But that is not the case, except perhaps
  31. on a couple platforms, such as Tru64 (maybe).  No, it turns out that the
  32. industry has taken a different path: each OS maker has adopted a
  33. *different* API for "long" files.  Therefore converting a portable program
  34. like Kermit (that can be built on hundreds of different OS's and versions)
  35. to support long files on many different platforms is going to be
  36. horrendous task.  Why, you ask?
  37.  
  38.   http://www.columbia.edu/kermit/ckcplm.html#x3
  39.  
  40. Volunteers are always welcome.  Back in the old days
  41. there used to be a lot of them.
  42.  
  43. : Or do you know any other software which is able to handle sftp,
  44. : logging to a file and everything started from a script?
  45. :
  46. I suspect the path of least resistance is to add long file support to 
  47. Kermit, but who has time?  Certainly not me, at least not unless somebody
  48. funds the project.
  49.  
  50. - Frank